dataflow - определение. Что такое dataflow
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое dataflow - определение

BROAD CONCEPT IN COMPUTER SYSTEMS WITH MANY DIFFERENT MEANINGS
Data flow; Flow of data; Data-flow; Dataflows; Data flows
Найдено результатов: 11
data flow         
A data flow architecture or language performs a computation when all the operands are available. Data flow is one kind of data driven architecture, the other is demand driven. It is a technique for specifying parallel computation at a fine-grain level, usually in the form of two-dimensional graphs in which instructions that are available for concurrent execution are written alongside each other while those that must be executed in sequence are written one under the other. Data dependencies between instructions are indicated by directed arcs. Instructions do not reference memory since the data dependence arcs allow data to be transmitted directly from the producing instruction to the consuming one. Data flow schemes differ chiefly in the way that they handle re-entrant code. Static schemes disallow it, dynamic schemes use either "code copying" or "tagging" at every point of reentry. An example of a data flow architecture is MIT's VAL machine.
Dataflow programming         
PROGRAMMING PARADIGM THAT MODELS PROGRAM AS A DIRECTED GRAPH OF DATA FLOW BETWEEN OPERATIONS
Dataflow language; Dataflow languages; Dataflow programming language; Datastream programming; Data-flow programming; Data flow programming; History of dataflow programming
In computer programming, dataflow programming is a programming paradigm that models a program as a directed graph of the data flowing between operations, thus implementing dataflow principles and architecture. Dataflow programming languages share some features of functional languages, and were generally developed in order to bring some functional concepts to a language more suitable for numeric processing.
Dataflow architecture         
COMPUTER ARCHITECTURE THAT LACK A PROGRAM COUNTER, IN WHICH THE EXECUTABILITY AND EXECUTION OF INSTRUCTIONS IS SOLELY DETERMINED BASED ON THE AVAILABILITY OF INPUT ARGUMENTS TO THE INSTRUCTIONS, WITH UNPREDICTABLE EXECUTION ORDER
Data flow computers; Data-flow architecture; Data flow architecture; Dataflow processor
Dataflow architecture is a computer architecture that directly contrasts the traditional von Neumann architecture or control flow architecture. Dataflow architectures have no program counter, in concept: the executability and execution of instructions is solely determined based on the availability of input arguments to the instructions, so that the order of instruction execution is unpredictable, i.
Google Cloud Dataflow         
SERVICE
Google Cloud Dataflow is a fully managed service for executing Apache Beam pipelines within the Google Cloud Platform ecosystem.
Synchronous Data Flow         
RESTRICTION OF KAHN PROCESS NETWORKS
Draft:Synchronous Dataflow
Synchronous Data Flow (SDF) is a restriction on Kahn process networks where the number of tokens read and written by each process is known ahead of time. In some cases, processes can be scheduled such that channels have bounded FIFOs.
Irvine Dataflow      
<language> (Always called "Id") A non-strict, {single assignment} language and incremental compiler developed by Arvind and Gostelow and used on MIT's {Tagged-Token Dataflow Architecture} and planned to be used on Motorola's Monsoon. See also Id Nouveau. ["An Asynchronous Programming Language for a Large Multiprocessor Machine", Arvind et al, TR114a, Dept ISC, UC Irvine, Dec 1978]. ["The U-Interpreter", Arvind et al, Computer 15(2):42-50, 1982]. (1998-02-14)
data flow analysis         
TECHNIQUE FOR GATHERING INFORMATION ABOUT THE POSSIBLE SET OF VALUES CALCULATED AT VARIOUS POINTS IN A COMPUTER PROGRAM
Dataflow analysis; Data flow analysis; Data Flow Analysis; Flow analysis; Data-flow graph; Data flow graph; Dataflow graph; Global data flow analysis; Global data-flow analysis; Kildall's method; Kildall's algorithm
<programming> A process to discover the dependencies between different data items manipulated by a program. The order of execution in a data driven language is determined solely by the data dependencies. For example, given the equations 1. X = A + B 2. B = 2 + 2 3. A = 3 + 4 a data-flow analysis would find that 2 and 3 must be evaluated before 1. Since there are no data dependencies between 2 and 3, they may be evaluated in any order, including in parallel. This technique is implemented in hardware in some pipelined processors with multiple functional units. It allows instructions to be executed as soon as their inputs are available, independent of the original program order. (1996-05-13)
Data-flow analysis         
TECHNIQUE FOR GATHERING INFORMATION ABOUT THE POSSIBLE SET OF VALUES CALCULATED AT VARIOUS POINTS IN A COMPUTER PROGRAM
Dataflow analysis; Data flow analysis; Data Flow Analysis; Flow analysis; Data-flow graph; Data flow graph; Dataflow graph; Global data flow analysis; Global data-flow analysis; Kildall's method; Kildall's algorithm
Data-flow analysis is a technique for gathering information about the possible set of values calculated at various points in a computer program. A program's control-flow graph (CFG) is used to determine those parts of a program to which a particular value assigned to a variable might propagate.
Data Flow Diagram         
  • Data flow diagram with data storage, data flows, function and interface
  • DeMarco]] notation''
GRAPHICAL REPRESENTATION OF THE "FLOW" OF DATA THROUGH AN INFORMATION SYSTEM
External entity; Data Flow Diagram; Dataflow diagram; Data flow model; Physical Data Flow; Logical Data Flow; Data flow diagram
<programming> A graphical notation used to describe how data flows between processes in a system. Data flow diagrams are an important tool of most structured analysis techniques. http://smartdraw.com/resources/centers/software/dfd.htm. (2003-05-17)
Data-flow diagram         
  • Data flow diagram with data storage, data flows, function and interface
  • DeMarco]] notation''
GRAPHICAL REPRESENTATION OF THE "FLOW" OF DATA THROUGH AN INFORMATION SYSTEM
External entity; Data Flow Diagram; Dataflow diagram; Data flow model; Physical Data Flow; Logical Data Flow; Data flow diagram
A data-flow diagram is a way of representing a flow of data through a process or a system (usually an information system). The DFD also provides information about the outputs and inputs of each entity and the process itself.

Википедия

Dataflow

In computing, dataflow is a broad concept, which has various meanings depending on the application and context. In the context of software architecture, data flow relates to stream processing or reactive programming.